home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 54813 / 54813.xpi / chrome / content / add2cal.xul < prev   
Extensible Markup Language  |  2009-12-14  |  1KB  |  27 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://add2cal/skin/add2cal.css" type="text/css"?>
  3. <overlay id="add2cal" 
  4.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  5.     xmlns:html="http://www.w3.org/1999/xhtml">
  6.     
  7.     <script type="text/javascript" src="chrome://add2cal/content/add2cal.js" />
  8.     
  9.     <toolbar id="nav-bar">
  10.         <toolbarbutton image="chrome://add2cal/skin/icon.png" id="add2cal-button" insertbefore="urlbar-container" />
  11.         <panel id="add2cal-popup" noautohide="true">
  12.             <vbox>
  13.                 <box id="add2cal-arrow"></box>
  14.                 <box id="add2cal-alert-container">
  15.                     <html:div id="add2cal-alert-inner">
  16.                         <html:div id="add2cal-alert" />
  17.                         <html:div id="add2cal-alert-buttons">
  18.                             <html:a href="#" id="add2cal-close-popup">hide</html:a>
  19.                         </html:div>
  20.                     </html:div>
  21.                 </box>
  22.             </vbox>
  23.         </panel>
  24.     </toolbar>
  25.     
  26. </overlay>
  27.